 .chat-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
  }
  
  .chat-button {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    color: white;
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .chat-label {
  font-size: 12px;
  margin-bottom: 5px;
  background: linear-gradient(90deg, #00e0ff, #8e2de2);
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  animation: bounce 2s infinite;
  white-space: nowrap;
  margin-top: -100px;
  margin-left: -12px;
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
  
  .chat-button:hover {
    background: rgba(255, 255, 255, 0.9);
    color: black;
    transform: scale(1.05);
  }
  
  .chat-box {
    display: none;
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 280px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    color: white;
    overflow: hidden;
  }
  
  .chat-header {
    background-color: rgba(25, 25, 25, 0.408);
    padding: 10px;
    font-weight: 1px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .close-btn {
    cursor: pointer;
  }
  
.chat-body {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
  
  .chat-option {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .chat-option:hover {
    background-color: rgba(255, 255, 255, 0.15);
  }


  .quote-form {
  display: flex;
  flex-direction: column;
  gap: 12px; 
  align-items: center; 
  padding: 7px;
}

.quote-form h4 {
  margin: 0;
  font-size: 16px;
  color: white;
}

.form-input {
  padding: 8px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 14px;
  width: 100%; 
  max-width: 240px; 
}
.form-input option {
  background-color: #2c2c2c;  
  color: white;      
}         

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.submit-btn {
  background-color: #ffffff33;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
   width: 100%;
  max-width: 240px;
  text-align: center;
}

.submit-btn:hover {
  background-color: rgba(255, 255, 255, 0.25);
}
.form-input:focus {
  border-color: #9b59b6;
  box-shadow: 0 0 8px rgba(155, 89, 182, 0.6);
  outline: none;
}



.form-input-a {
    padding: 8px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 14px;
    /* width: 100%; */
    max-width: 240px;
}

.bot-message, .user-message {
  padding: 10px 14px;
  border-radius: 14px;
  max-width: 80%;
  font-size: 14px;
  line-height: 1.4;
  word-wrap: break-word;
}

.bot-message {
  align-self: flex-start;
  background: #f1f1f1;
  color: #000;
  border-radius: 12px 12px 12px 0;
  padding: 10px 14px;
  max-width: 80%;
  font-size: 14px;
      margin-bottom: 10px;
}

.user-message {
  align-self: flex-end;
   margin-left: auto;
  background: #0b846d;
  color: #fff;
  border-radius: 12px 12px 0 12px;
  padding: 10px 14px;
  max-width: 80%;
  font-size: 14px;
  margin-bottom: 10px;
}

.chat-footer {
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-footer input {
  flex: 1;
  border: none;
  padding: 12px;
  background: transparent;
  color: white;
  font-size: 14px;
  outline: none;
}

.chat-footer button {
  background: transparent;
  border: none;
  color: white;
  padding: 0 16px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.2s;
}
.chat-footer button:hover {
  color: #0b846d;
}


@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animated-message {
  animation: fadeInUp 0.3s ease forwards;
}

.typing-indicator {
  align-self: flex-start;
  background: #f1f1f1;
  color: #000;
  border-radius: 12px 12px 12px 0;
  padding: 10px 14px;
  font-size: 14px;
  max-width: 60px;
  margin-bottom: 10px;
  display: flex;
  gap: 4px;
  animation: fadeInUp 0.3s ease forwards;
}

.typing-dot {
  width: 6px;
  height: 6px;
  background: #555;
  border-radius: 50%;
  animation: typingBounce 1.2s infinite;
}

.typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}
.typing-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typingBounce {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  50% {
    transform: translateY(-4px);
    opacity: 1;
  }
}
/* hide-label */
.hide {
    display: none; 
  }

